home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / CONFIG.H < prev    next >
C/C++ Source or Header  |  1989-08-19  |  1KB  |  44 lines

  1. #ifndef    NSESSIONS
  2.  
  3. /* Software options */
  4. #define    SERVERS        1    /* Include TCP servers */
  5. #define    TRACE        1    /* Include packet tracing code */
  6. #define    NSESSIONS    10    /* Number of interactive clients */
  7. #define DEFNSOCK    40    /* Default number of sockets */
  8. #define    HEAPSIZE    200    /* Default heap size in kilobytes */
  9.  
  10. /* Hardware configuration */
  11. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  12. #define    SLIP        1    /* Serial line IP */
  13. #define    KISS        1    /* KISS TNC code */
  14. #define    HS        1    /* High speed (56kbps) modem driver */
  15. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  16. #undef    EAGLE        1    /* Eagle card driver */
  17. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  18. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  19. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  20. #undef    NRS        1    /* NET/ROM async interface */
  21. #define    NETROM        1    /* NET/ROM network support */
  22.  
  23. #if (defined(NRS))
  24. #undef    NETROM
  25. #define    NETROM        1    /* NRS implies NETROM */
  26. #endif
  27.  
  28. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  29. #define    AX25        1        /* AX.25 subnet code */
  30. #endif
  31.  
  32. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  33. #if (defined(KISS) || defined(NRS) || defined(SLIP))
  34. #undef    ASY
  35. #define    ASY        1    /* Asynch driver code */
  36. #endif
  37.  
  38. #if (defined(PC_EC) || defined(PACKET))
  39. #define    ETHER    1        /* Generic Ethernet code */
  40. #endif
  41.  
  42. #endif    /* NSESSIONS */
  43.  
  44.